home *** CD-ROM | disk | FTP | other *** search
/ Mac Power 1996 June / MACPOWER-1996-06.ISO.7z / MACPOWER-1996-06.ISO / AMUG / UTILITY_40 / MacShell 0.54b / MacShell.0.54b / macshell.rc < prev   
Text File  |  1996-01-22  |  1KB  |  45 lines

  1. # This is a sample configuration file for MacShell. 
  2. # This file should be customized to suit your preferences, and
  3. # stored in the same folder where you keep MacShell.
  4. #
  5. # Lines beginning with the pound character will be ignored 
  6. # by MacShell.  Uncomment the things you want to use.
  7. #
  8. # "remapesc" is a special shell variable used to cause the backquote
  9. # key to trigger file name completion instead of the escape key.
  10. #
  11. # set remapesc
  12. #
  13. # "tabnc" makes the tab key trigger file name completion.  If both
  14. # tabnc and remapesc are set, tabnc takes precedence.
  15. #
  16. set tabnc
  17. #
  18. # Aliases can be used to change the meaning of a command, or to
  19. # define new commands based on existing ones. 
  20. # For example:
  21. #
  22. # Always show the long format for the command 'ls'
  23. # alias ls "ls -l" 
  24. #
  25. # Accomodate DOS users:
  26. alias dir ls
  27. #
  28. # Special shell variables 'path' and 'manpath' tell MacShell
  29. # where to look for 'executable' files and files containing 
  30. # manual entries, respectively.  These should be customized 
  31. # with the path to the places where you keep such things. 
  32. #
  33. # Note that the current directory (represented by a single colon)
  34. # should normally be included in the path and manpath list so 
  35. # that you can access things in the current directory.
  36. #
  37. # Set a shell variable to indicate where MacShell's root is:
  38. set msroot="`pwd`"
  39. set path=(${msroot}:bin: :)
  40. set manpath=(${msroot}:bin: :)
  41.  
  42.  
  43.